From 5a7345f01f6882bb1e31f9e4dc43fca4f93d0b81 Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Tue, 2 May 2006 09:16:02 +0100 Subject: [PATCH] Fix ia64 build. do_physdev_op* declared incorrectly Signed-off-by: Dan Magenheimer --- xen/arch/ia64/xen/hypercall.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/arch/ia64/xen/hypercall.c b/xen/arch/ia64/xen/hypercall.c index ca1a103c3b..8b83db3e7b 100644 --- a/xen/arch/ia64/xen/hypercall.c +++ b/xen/arch/ia64/xen/hypercall.c @@ -27,8 +27,8 @@ #include extern unsigned long translate_domain_mpaddr(unsigned long); -static long do_physdev_op_compat(int cmd, XEN_GUEST_HANDLE(void) arg); -static long do_physdev_op(XEN_GUEST_HANDLE(physdev_op_t) uop); +static long do_physdev_op_compat(XEN_GUEST_HANDLE(physdev_op_t) uop); +static long do_physdev_op(int cmd, XEN_GUEST_HANDLE(void) arg); /* FIXME: where these declarations should be there ? */ extern int dump_privop_counts_to_user(char *, int); extern int zero_privop_counts_to_user(char *, int); -- 2.30.2